-- card: 7597 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 2764 -- name: -- part contents for background part 17 ----- text ----- StripChar -- part contents for background part 18 ----- text ----- Mike Gleason Jr. -- part contents for background part 19 ----- text ----- XFCN -- part contents for background part 20 ----- text ----- StripChar("string","charToStrip" [,"LeadingOnly"]) -- part contents for background part 21 ----- text ----- This XFCN will strip off a certain character from a string, given the string, and the character to look for. If you specify "LeadingOnly", all characters of the type you specify wil l be stripped until it encounters a different character. -- part contents for background part 23 ----- text ----- put stripchar("Nebraska Cornhuskers","s") into msg --> "Nebraka Cornhuker" put stripchar(" 0.032"," ","LeadingOnly") into n --> "0.032" put stripchar("AARDVARK","A","LeadingOnly") into animal --> "RDVARK"